home *** CD-ROM | disk | FTP | other *** search
/ Champak 45 / Vol 45.iso / games / escape.swf / scripts / frame_6 / PlaceObject2_246_45 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Encoding:
Text File  |  2005-08-23  |  258 b   |  15 lines

  1. onClipEvent(enterFrame){
  2.    _alpha = 100;
  3.    if(_global.gauge_b > 0)
  4.    {
  5.       hp -= _global.gauge_b;
  6.       _global.gauge_b = 0;
  7.       this._width = hp;
  8.    }
  9.    _global.hitpoint = hp;
  10.    if(hp < 0)
  11.    {
  12.       _root.gotoAndPlay("over");
  13.    }
  14. }
  15.